home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1999 February
/
Macworld (1999-02).dmg
/
Serious Demos
/
PageSentry 2.5.1 CD Demo
/
Sample AppleScripts
/
RecyclePower
< prev
next >
Wrap
Text File
|
1996-02-11
|
521b
|
20 lines
on pause(length)
local endTime
set endTime to (current date) + length
repeat while (current date) < endTime
end repeat
end pause
--- PageSentry Notification Applet
--- Recycle the power with a PowerKey
on «event SENTfail» sentryName given «class FURL»:failedURL, «class XTRA»:extra, «class STAT»:Status
tell application "PowerKey™ Extension"
set level of outlet 2 of unit 1 to 0
end tell
pause(10)
tell application "PowerKey™ Extension"
set level of outlet 2 of unit 1 to 100
end tell
end «event SENTfail»